home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #5 / Amiga Plus CD - 2000 - No. 5.iso / Tools / Dev / GameboyDev / GBDK / examples / dscan / smakefile < prev   
Encoding:
Makefile  |  1999-04-23  |  245 b   |  13 lines

  1.  
  2. all: dscan.gb
  3.  
  4. clean:
  5.     Delete #?.o #?.lst #?.map
  6.  
  7. dscan.o: dscan.c bkg_c.c bkg_m.c bkg.c bkg.h fore.c fore.h  
  8.     lcc -c dscan.c
  9.  
  10. # Link file, and write 0x80 at position 0x143 in header
  11. dscan.gb:    dscan.o
  12.     lcc -Wl-yp0x143=0x80 -o dscan.gb dscan.o
  13.